Stored Procedures [dbo].[dt_checkoutobject_u]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@chObjectTypechar(4)4
@vchObjectNamenvarchar(255)510
@vchCommentnvarchar(255)510
@vchLoginNamenvarchar(255)510
@vchPasswordnvarchar(255)510
@iVCSFlagsint4
@iActionFlagint4
Permissions
TypeActionOwning Principal
GrantExecutepublic
SQL Script
create proc dbo.dt_checkoutobject_u
    @chObjectType  char(4),
    @vchObjectName nvarchar(255),
    @vchComment    nvarchar(255),
    @vchLoginName  nvarchar(255),
    @vchPassword   nvarchar(255),
    @iVCSFlags     int = 0,
    @iActionFlag   int = 0/* 0 => Checkout, 1 => GetLatest, 2 => UndoCheckOut */

as

    -- This procedure should no longer be called;  dt_checkoutobject should be called instead.
    -- Calls are forwarded to dt_checkoutobject to maintain backward compatibility.
    set nocount on
    exec dbo.dt_checkoutobject
        @chObjectType,  
        @vchObjectName,
        @vchComment,    
        @vchLoginName,  
        @vchPassword,  
        @iVCSFlags,    
        @iActionFlag
GO
GRANT EXECUTE ON  [dbo].[dt_checkoutobject_u] TO [public]
GO
Uses